func github.com/andybalholm/brotli.isMatch

6 uses

	github.com/andybalholm/brotli (current package)
		static_dict.go#L40: func isMatch(d *dictionary, w dictWord, data []byte, max_length uint) bool {
		static_dict.go#L308: 				if !isMatch(dict.words, w, data, max_length) {
		static_dict.go#L442: 				if !isMatch(dict.words, w, data[1:], max_length-1) {
		static_dict.go#L508: 				if !isMatch(dict.words, w, data[1:], max_length-1) {
		static_dict.go#L604: 				if w.transform == 0 && isMatch(dict.words, w, data[2:], max_length-2) {
		static_dict.go#L636: 				if w.transform == 0 && isMatch(dict.words, w, data[5:], max_length-5) {